which
A Rust equivalent of Unix command "which". Locate installed executable in cross platforms.
Support platforms
- Linux
- Windows
- macOS
Examples
-
To find which rustc executable binary is using.
use which; let result = which.unwrap; assert_eq!;
-
After enabling the
regex
feature, find all cargo subcommand executables on the path:use which_re; which_re.unwrap .for_each;
MSRV
This crate currently has an MSRV of Rust 1.63. Increasing the MSRV is considered a breaking change and thus requires a major version bump.
Documentation
The documentation is available online.